home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 102 / Computer Shopper 102 / Computer SHOPPER_102.iso / multimed.ia / violent / shared.dir / 00562.ls < prev    next >
Encoding:
Text File  |  1996-04-15  |  701 b   |  26 lines

  1. on mouseUp
  2.   global gSound
  3.   if gSound = 1 then
  4.     set the blend of sprite the clickOn to 70
  5.     updateStage()
  6.     set gSound to 0
  7.     if the type of sprite 4 = 16 then
  8.       set the movieRate of sprite 4 to 0
  9.       set the movieTime of sprite 4 to 0
  10.       set the sound of cast the castNum of sprite 4 to 1
  11.       set the volume of sprite 4 to 200
  12.     end if
  13.     set the soundEnabled to gSound
  14.   else
  15.     set the blend of sprite the clickOn to 100
  16.     updateStage()
  17.     set gSound to 1
  18.     set the soundEnabled to gSound
  19.     if the type of sprite 4 = 16 then
  20.       set the sound of cast the castNum of sprite 4 to 1
  21.       set the volume of sprite 4 to 200
  22.       updateStage()
  23.     end if
  24.   end if
  25. end
  26.